home *** CD-ROM | disk | FTP | other *** search
/ SGI Developer Toolbox 6.1 / SGI Developer Toolbox 6.1 - Disc 4.iso / src / exampleCode / SciTex / examples / phong / Makefile < prev    next >
Encoding:
Makefile  |  1994-08-02  |  321 b   |  19 lines

  1. #!smake
  2.  
  3. include ${ROOT}/usr/include/make/commondefs
  4.  
  5. TARGETS = sp
  6. CFILES  = sp.c trackball.c tex1.c display.c object.c
  7.  
  8. LCOPTS    = -prototypes -cckr
  9. LLDLIBS    = -lfm -lsphere -lgl -lmalloc -lfastm -lm
  10. LDIRT    = hig
  11.  
  12. default all: ${TARGETS}
  13.  
  14. include $(COMMONRULES)
  15.  
  16. ${TARGETS} : ${OBJECTS}
  17.     ${CCF} ${OBJECTS} -o $@ ${LDFLAGS}
  18.  
  19.